home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web13 / tutorial 05 / tables.css < prev    next >
Cascading Style Sheet File  |  2011-02-22  |  998b  |  38 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 5
  4.    Tutorial Case
  5.  
  6.    Tables Style Sheet
  7.    Author: Leah Grullon
  8.    Date:   Feb.22, 2011
  9.  
  10.    Filename:         tables.css
  11.    Supporting Files: 
  12.  
  13. */
  14.  
  15. table.schedule         {border: 10px outset rgb(153, 0, 153); border-collapse: collapse;
  16.                         font-family: Arial, Helvetica, sans-serif; font-size: 0.7em;
  17.                         width: 100%}
  18.  
  19.  
  20. table.schedule th, table.schedule td
  21.                        {border: 1px solid gray}
  22.  
  23.  
  24. table.schedule thead   {color: white; background-color: rgb(203, 50, 203)}
  25.  
  26. table.schedule col.firstcol
  27.                        {background-color: rgb(255, 255, 192); width: 7%} 
  28.  
  29. table.schedule col.dayCols
  30.                        {width: 13%}
  31.  
  32.  
  33. table.schedule thead tr {height: 20px}
  34. table.schedule tbody tr {height: 30px}
  35.  
  36. table.schedule tbody td {vertical-align: top; padding: 5px}
  37.  
  38. table.schedule caption  {caption-side: top; text-align: right}